Dear Pov'ers,
I was wondering if povray 3.02 can handle nested #while statements the
following code only outputs a single line of links in the z direction...
#declare X=0
#declare Y=0
#declare Z=0
#while (X<10)
#while (Y<10)
#while (Z<10)
object { link translate <X*1.75, Y*1.75,
Z*1.75> }
#declare Z=Z+1
#end
#declare Y=Y+1
#end
#declare X=X+1
#end
Please tell me if there is something blantantly wrong with this or if
povray doesn't do nested #while statements.
Dan.
Post a reply to this message
|